D:\git\skunkworks\herald-for-cpp\herald\include\herald\datatype\immediate_send_data.h
Line | Count | Source |
1 | | // Copyright 2020-2021 Herald Project Contributors |
2 | | // SPDX-License-Identifier: Apache-2.0 |
3 | | // |
4 | | |
5 | | #ifndef HERALD_IMMEDIATE_SEND_DATA_H |
6 | | #define HERALD_IMMEDIATE_SEND_DATA_H |
7 | | |
8 | | #include "data.h" |
9 | | |
10 | | namespace herald { |
11 | | namespace datatype { |
12 | | |
13 | | class ImmediateSendData : public Data { |
14 | | public: |
15 | | ImmediateSendData(); |
16 | | ImmediateSendData(const Data& from); |
17 | 1 | ~ImmediateSendData() = default; |
18 | | }; |
19 | | |
20 | | } // end namespace |
21 | | } // end namespace |
22 | | |
23 | | #endif |